Skip to content

BO2 Modding Support & Discussion

Got modding questions regarding Plutonium T6? Scripts erroring? Request help from the community here. Discuss your modding projects etc.

2.3k Topics 9.1k Posts
  • How do I make custom prestige emblems?

    1
    1 Votes
    1 Posts
    249 Views
    No one has replied
  • Quick question about what I can do with GSC?

    3
    0 Votes
    3 Posts
    214 Views
    Thank you so much. Do you know what files / dvars to look at?
  • "~" commands?

    Moved
    3
    0 Votes
    3 Posts
    246 Views
    @DSavv You can type "name AnyName" or maybe if you're in custom games to setup bots, type "xpartygo"
  • Need help to mod my server

    4
    0 Votes
    4 Posts
    225 Views
    A Former User?
    disable that in iw4madmin config
  • Multiple Mods in one clientids.gcs file?!

    5
    0 Votes
    5 Posts
    540 Views
    @denis070 merging multiple mods isn't as simple as copy and pasting it all. you need to make sure the includes are still present, need to make sure everything is being called correctly, whether its in init, onplayerconnect, onplayerspawned, etc., and you need to make sure its not duplicating the init, onplayerconnect, onplayerspawned, etc. functions. if you just decompiled the mod and expected it to work, that probably wouldn't work either. you may need to fix some things before that
  • [Support] Modifying Connection Interrupted String

    3
    0 Votes
    3 Posts
    177 Views
    @Dss0 alrighty, thank you
  • Modding and Downloading Maps

    Moved
    2
    0 Votes
    2 Posts
    267 Views
    @OMFGWALRUS /moved there are no custom maps for bo2, placing carepackages on a map doesn't make it a custom map. The game can't be started via t6mp/t6zm, you need to use the launcher. If you run the game in lan mode (arrow next to the play button) the anticheat will be disabled and you will be able to inject mods and stuff (if you find an injector that works with pluto, no idea if one exists). Don't try injecting anything or modifying anything in online mode as it will get you banned. Another way to run mods is to set up a dedicated server and load mods on that.
  • Custom Textures and camos for zombies

    Moved
    2
    0 Votes
    2 Posts
    2k Views
    @Carson-144 tut if you want to create your own camos: https://youtu.be/Xm2z7LEML08 You should also be able to find alot of camos made by other ppl in the bo2 mod release section
  • GSC Waitill score / points increases

    2
    0 Votes
    2 Posts
    229 Views
    @Lewis5441 There's a couple ways of checking for score changes but I'm unaware of a notify for it. Here's a simple method though. scoreMonitor() { self endon("disconnect"); self endon("game_ended"); // Setup variables required for monitoring score currentScore = self.pers["score"]; previousScore = currentScore; for(;;) { // Check for score change currentScore = self.pers["score"]; if(currentScore != previousScore) { // Update previous score previousScore = currentScore; // Insert your code here self iprintln(self.name + "'s score has changed!"); } wait 0.05; } }
  • Help

    Moved
    3
    0 Votes
    3 Posts
    215 Views
    @EzzUp GGGAA
  • Code To Get Points

    Moved
    2
    0 Votes
    2 Posts
    3k Views
    I have made a script that allows you to get points when pressing a button. https://forum.plutonium.pw/topic/94/support-making-custom-gsc-scripts-for-you-guys/10?_=1603325146530
  • Unlock Weapons and Camo's

    Moved
    2
    1 Votes
    2 Posts
    488 Views
    @WeeDStaRRR /moved All weapons can be unlocked by typing the command unlockall into the ingame console (you can open the console with the tilde key). Camos -> https://forum.plutonium.pw/topic/3810/release-mp-diamond-camo-unlocker-10-cac-slots
  • Something stupid

    4
    0 Votes
    4 Posts
    127 Views
    i figure i guess i can try one day when i am not new to coding
  • can we replace the zombies pack a punch camo

    9
    0 Votes
    9 Posts
    2k Views
    @Cahz which file do i need to rename?
  • This topic is deleted!

    Moved
    1
    0 Votes
    1 Posts
    70 Views
    No one has replied
  • My Custom Camos Are Inverted?

    1
    0 Votes
    1 Posts
    118 Views
    No one has replied
  • Can anyone help me convert png to iwi?

    Moved
    2
    0 Votes
    2 Posts
    472 Views
    yeah bro, just search up a iw4x camo tutorial, and then you can find the iwi tool usually in the description.
  • Zombie++ forces map restart instead of rotate

    3
    0 Votes
    3 Posts
    302 Views
    @Cahz done it, works great. Attached a working compiled gsc. [0_1602702792837__clientids.gsc](Uploading 100%)
  • custom colors for class name

    Moved
    1
    0 Votes
    1 Posts
    395 Views
    No one has replied
  • Does anyone known how to change loading for zombies

    8
    0 Votes
    8 Posts
    405 Views
    @Nathan3197 thx man